12#ifndef AOM_AV1_ENCODER_FIRSTPASS_H_
13#define AOM_AV1_ENCODER_FIRSTPASS_H_
17#include "av1/common/av1_common_int.h"
20#include "av1/encoder/ratectrl.h"
26#define DOUBLE_DIVIDE_CHECK(x) ((x) < 0 ? (x) - 0.000001 : (x) + 0.000001)
28#define MIN_ZERO_MOTION 0.95
29#define MAX_SR_CODED_ERROR 40
30#define MAX_RAW_ERR_VAR 2000
31#define MIN_MV_IN_OUT 0.4
33#define VLOW_MOTION_THRESHOLD 950
182#define FIRSTPASS_INFO_STATS_PAST_MIN 1
185#define FIRSTPASS_INFO_STATIC_BUF_SIZE \
186 (MAX_LAP_BUFFERS + FIRSTPASS_INFO_STATS_PAST_MIN)
262 int ext_stats_buf_size);
328 int offset_from_cur);
331#define FC_ANIMATION_THRESH 0.15
334 FC_GRAPHICS_ANIMATION = 1,
335 FRAME_CONTENT_TYPES = 2
336} UENUM1BYTE(FRAME_CONTENT_TYPE);
346 FRAME_UPDATE_TYPE update_type[MAX_STATIC_GF_GROUP_LENGTH];
347 unsigned char arf_src_offset[MAX_STATIC_GF_GROUP_LENGTH];
350 unsigned char cur_frame_idx[MAX_STATIC_GF_GROUP_LENGTH];
351 int layer_depth[MAX_STATIC_GF_GROUP_LENGTH];
352 int arf_boost[MAX_STATIC_GF_GROUP_LENGTH];
354 int max_layer_depth_allowed;
356 int q_val[MAX_STATIC_GF_GROUP_LENGTH];
357 int rdmult_val[MAX_STATIC_GF_GROUP_LENGTH];
358 int bit_allocation[MAX_STATIC_GF_GROUP_LENGTH];
360 FRAME_TYPE frame_type[MAX_STATIC_GF_GROUP_LENGTH];
362 REFBUF_STATE refbuf_state[MAX_STATIC_GF_GROUP_LENGTH];
368 int src_offset[MAX_STATIC_GF_GROUP_LENGTH];
370 int display_idx[MAX_STATIC_GF_GROUP_LENGTH];
376 int8_t ref_frame_list[MAX_STATIC_GF_GROUP_LENGTH][REF_FRAMES];
378 int update_ref_idx[MAX_STATIC_GF_GROUP_LENGTH];
380 int primary_ref_idx[MAX_STATIC_GF_GROUP_LENGTH];
386 int frame_parallel_level[MAX_STATIC_GF_GROUP_LENGTH];
388 bool is_frame_non_ref[MAX_STATIC_GF_GROUP_LENGTH];
390 bool is_frame_dropped[MAX_STATIC_GF_GROUP_LENGTH];
394 int skip_frame_refresh[MAX_STATIC_GF_GROUP_LENGTH][REF_FRAMES];
397 int skip_frame_as_ref[MAX_STATIC_GF_GROUP_LENGTH];
402 int use_ext_ref_frame_map[MAX_STATIC_GF_GROUP_LENGTH];
409 int arf_gf_boost_lst;
427 unsigned int section_intra_rating;
432 int frame_stats_next_idx;
433 STATS_BUFFER_CTX *stats_buf_ctx;
438 double modified_error_min;
439 double modified_error_max;
440 double modified_error_left;
443 int64_t kf_group_bits;
446 double kf_group_error_left;
452 int rolling_arf_group_target_bits;
453 int rolling_arf_group_actual_bits;
457 int kf_zeromotion_pct;
458 int last_kfgroup_zeromotion_pct;
474 FRAME_CONTENT_TYPE fr_content_type;
475 double frame_avg_haar_energy;
487 int64_t frame_avg_wavelet_energy;
491 int64_t sr_coded_error;
493 int64_t lt_coded_error;
501 int second_ref_count;
503 double neutral_count;
505 int intra_skip_count;
507 int image_data_start_row;
527 double brightness_factor;
535 FRAME_STATS *mb_stats;
540 int *raw_motion_err_list;
548static inline int is_fp_wavelet_energy_invalid(
550 assert(fp_stats != NULL);
554static inline BLOCK_SIZE get_fp_block_size(
int is_screen_content_type) {
555 return (is_screen_content_type ? BLOCK_8X8 : BLOCK_16X16);
558int av1_get_unit_rows_in_tile(
const TileInfo *tile,
559 const BLOCK_SIZE fp_block_size);
560int av1_get_unit_cols_in_tile(
const TileInfo *tile,
561 const BLOCK_SIZE fp_block_size);
563void av1_first_pass_row(
struct AV1_COMP *cpi,
struct ThreadData *td,
564 struct TileDataEnc *tile_data,
const int mb_row,
565 const BLOCK_SIZE fp_block_size);
566void av1_end_first_pass(
struct AV1_COMP *cpi);
568void av1_free_firstpass_data(FirstPassData *firstpass_data);
595void av1_noop_first_pass_frame(
struct AV1_COMP *cpi,
const int64_t ts_duration);
aom_codec_err_t
Algorithm return codes.
Definition aom_codec.h:155
aom_codec_err_t av1_firstpass_info_push(FIRSTPASS_INFO *firstpass_info, const FIRSTPASS_STATS *input_stats)
Push a stats into firstpass_info.
const FIRSTPASS_STATS * av1_firstpass_info_peek(const FIRSTPASS_INFO *firstpass_info, int offset_from_cur)
Peek at a stats from firstpass_info.
aom_codec_err_t av1_firstpass_info_move_cur_index(FIRSTPASS_INFO *firstpass_info)
Move cur_index by 1.
void av1_first_pass(struct AV1_COMP *cpi, const int64_t ts_duration)
AV1 first pass encoding.
aom_codec_err_t av1_firstpass_info_pop(FIRSTPASS_INFO *firstpass_info)
Pop a stats from firstpass_info.
aom_codec_err_t av1_firstpass_info_init(FIRSTPASS_INFO *firstpass_info, FIRSTPASS_STATS *ext_stats_buf, int ext_stats_buf_size)
Init firstpass_info.
aom_codec_err_t av1_firstpass_info_move_cur_index_and_pop(FIRSTPASS_INFO *firstpass_info)
Move cur_index by 1 and pop a stats from firstpass_info.
int av1_firstpass_info_future_count(const FIRSTPASS_INFO *firstpass_info, int offset_from_cur)
Count the future stats from the target in firstpass_info Note that the target stats will be counted a...
Describes look ahead buffer operations.
Main encoder configuration data structure.
Definition encoder.h:934
Top level encoder structure.
Definition encoder.h:2897
contains per-frame encoding parameters decided upon by av1_encode_strategy() and passed down to av1_e...
Definition encoder.h:3747
Data structure used for managing first pass stats.
Definition firstpass.h:191
int cur_index
Definition firstpass.h:230
FIRSTPASS_STATS static_stats_buf[(MAX_LAP_BUFFERS+1)]
Definition firstpass.h:201
int past_stats_count
Definition firstpass.h:240
int future_stats_count
Definition firstpass.h:235
int stats_buf_size
Definition firstpass.h:210
FIRSTPASS_STATS total_stats
Definition firstpass.h:245
int start_index
Definition firstpass.h:218
int stats_count
Definition firstpass.h:225
FIRSTPASS_STATS * stats_buf
Definition firstpass.h:206
The stucture of acummulated frame stats in the first pass.
Definition firstpass.h:43
double pcnt_neutral
Definition firstpass.h:94
double MVr
Definition firstpass.h:114
double MVc
Definition firstpass.h:122
double log_intra_error
Definition firstpass.h:173
double pcnt_second_ref
Definition firstpass.h:88
double mvr_abs
Definition firstpass.h:118
double pcnt_inter
Definition firstpass.h:78
double intra_error
Definition firstpass.h:58
double new_mv_count
Definition firstpass.h:144
double count
Definition firstpass.h:153
double lt_coded_error
Definition firstpass.h:74
double coded_error
Definition firstpass.h:66
double raw_error_stdev
Definition firstpass.h:157
double pcnt_motion
Definition firstpass.h:82
double frame
Definition firstpass.h:48
double cor_coeff
Definition firstpass.h:169
double mv_in_out_count
Definition firstpass.h:140
double noise_var
Definition firstpass.h:165
double MVcv
Definition firstpass.h:134
double log_coded_error
Definition firstpass.h:177
int64_t is_flash
Definition firstpass.h:161
double inactive_zone_cols
Definition firstpass.h:110
double frame_avg_wavelet_energy
Definition firstpass.h:62
double duration
Definition firstpass.h:148
double sr_coded_error
Definition firstpass.h:70
double mvc_abs
Definition firstpass.h:126
double intra_skip_pct
Definition firstpass.h:102
double MVrv
Definition firstpass.h:130
double inactive_zone_rows
Definition firstpass.h:106
double weight
Definition firstpass.h:54
Data related to the current GF/ARF group and the individual frames within the group.
Definition firstpass.h:343
Frame level Two pass status and control data.
Definition firstpass.h:467
Two pass status and control data.
Definition firstpass.h:425